home *** CD-ROM | disk | FTP | other *** search
- package
- {
- import mx.core.IFlexModuleFactory;
- import mx.styles.CSSStyleDeclaration;
- import mx.styles.StyleManager;
-
- public class _DoubleBorderSkinStyle
- {
- public function _DoubleBorderSkinStyle()
- {
- super();
- }
-
- public static function init(param1:IFlexModuleFactory) : void
- {
- var fbs:IFlexModuleFactory = param1;
- var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration("DoubleBorderSkin");
- if(!style)
- {
- style = new CSSStyleDeclaration();
- StyleManager.setStyleDeclaration("DoubleBorderSkin",style,false);
- }
- if(style.defaultFactory == null)
- {
- style.defaultFactory = function():void
- {
- this.fillColor = 5329234;
- this.inlineAlpha = 1;
- this.outlineColor = 16777215;
- this.fillAlpha = 0.7;
- this.outlineAlpha = 0.07;
- this.inlineColor = 0;
- };
- }
- }
- }
- }
-
-